6ec242011f030fc2387b13fbcfca2eeaf3e79ca8,findbugs/src/java/edu/umd/cs/findbugs/workflow/Update.java,Update,mergeCollections,#BugCollection#BugCollection#boolean#,122

Before Change


		if (!noPackageMoves) {
			VersionInsensitiveBugComparator movedBugComparator = new VersionInsensitiveBugComparator();
			movedBugComparator.setClassNameRewriter(new MovedClassMap(origCollection,newCollection).execute());
			matchBugs(movedBugComparator, origCollection,
					newCollection);
			movedBugComparator.setExactBugPatternMatch(false);
			matchBugs(movedBugComparator, origCollection,
				newCollection);

After Change


				movedBugComparator.setClassNameRewriter(movedClassMap);
				movedBugComparator.setComparePriorities(precisePriorityMatch);
				matchBugs(movedBugComparator, origCollection, newCollection);
				if (!preciseMatch) {
					movedBugComparator.setExactBugPatternMatch(false);
					matchBugs(movedBugComparator, origCollection, newCollection);
				}
			}
		}